| method |
post
get |
Sets how to send the data to the server. Default method is get. When method=get, the data is sent as a request with?data appended to the URL. A get can be used only for a limited amount of data, which is a disadvantage. If you send sensitive information it is displayed on the screen and saved in the Web server's logs. With method=”post”, the data is sent as a request with the data sent in the body of the request. This method has no limit, and sensitive information is not visible. The data sent in a get method is limited to ASCII characters. The data sent in a post method can include non-ASCII characters that are included as part of a value attribute in an <input>, <select>, or <option> tag that is part of the current WML page. |
SUPPORTED. |
| sendreferer |
true
false |
If set to true, the browser sends the URL of the current deck with the request, which allow servers to perform simple access control on decks, based on which decks are linking to them. Default is “false.” |
SUPPORTED. |